home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
dfm2txt
/
dfm2txt.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-12-22
|
222 b
|
14 lines
program Dfm2txt;
uses
Forms,
Ufile in 'UFILE.PAS' {Form1};
{$R *.RES}
begin
Application.Title := 'Delphi Form to Text file converter';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.